home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / TreeView / TreeView.h < prev    next >
Text File  |  1995-06-12  |  292b  |  16 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. @interface TreeView:View
  5. {
  6.     id treeRoot;
  7.     id lineList;
  8. }
  9.  
  10. - buildTreeFromNode:aNode bottom:(double)ybot
  11.         top:(double)ytop atX:(double)xpos parent:(NXPoint *)pos;
  12. - attachTree:aTree;
  13. - drawSelf:(NXRect *)rects :(int)rectCount;      // standard rendering method
  14.  
  15. @end
  16.